home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / com / computer / midi_com / sourcen / mc_drive.mid / cookie.h next >
Encoding:
C/C++ Source or Header  |  1993-12-06  |  244 b   |  19 lines

  1. #ifndef _COOKIE_H
  2. #define _COOKIE_H
  3.  
  4. union clong {
  5.     char    aschar[4];
  6.     long    aslong;
  7. };
  8.  
  9. struct cookie {
  10.     union clong tag;
  11.     long value;
  12. };
  13.  
  14. typedef struct cookie COOKIE;
  15.  
  16. #define CJAR    ((COOKIE **) 0x5a0L)
  17.  
  18. #endif /* _COOKIE_H */
  19.